home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
Servis
/
X-setup
/
_SETUP.1
/
XQ NoScape Navigator Settings.xpl
< prev
next >
Wrap
Text File
|
1998-08-08
|
1KB
|
40 lines
"FILE"="K/oS X-Setup Plugin 3.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Internet\Netscape Navigator"
"NAME"="Navigator Settings"
"LANGUAGE"="VBScript"
"TEXT 1"="Enable blinking text"
"DESCRIPTION 1"="If you hate the blinking text that sometimes appears inside Navigator, disable the first option."
"AUTHOR"="Xteq Systems"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
"COMMENT 2"="Version 1.1"
sP="HKCU\Software\Netscape\Netscape Navigator\Settings\"
sV1="Blinking"
Sub Plugin_Initialize
if RegPathExists(sP) then
s=RegReadValue(sP&sv1)
if UCase(s)="YES" then SetUIElement 1,true
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sp&sv1,"Yes",1)
else
Call RegWriteValue(sp&sv1,"No",1)
end if
End Sub
Sub Plugin_Terminate
End Sub